home *** CD-ROM | disk | FTP | other *** search
/ Game.EXE 2005 November / Game.EXE_11_2005_DVD.iso / Flash Games / Robo Farmer / robofarmer.swf / scripts / DefineButton2_735 / BUTTONCONDACTION on(rollOver).as < prev   
Encoding:
Text File  |  2005-09-23  |  421 b   |  18 lines

  1. on(rollOver){
  2.    if(_root.deagleisowned == true)
  3.    {
  4.       _root.description = "You already own the Desert Eagle.";
  5.       return undefined;
  6.    }
  7.    if(_root.money >= 250)
  8.    {
  9.       _root.description = "Buy the Desert Eagle handgun. 250$.";
  10.       return undefined;
  11.    }
  12.    if(_root.money <= 249)
  13.    {
  14.       _root.description = "You cannot afford the Desert Eagle. 250$.";
  15.       return undefined;
  16.    }
  17. }
  18.